home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / mscfunct / crt_wpix.c < prev    next >
C/C++ Source or Header  |  1987-05-06  |  230b  |  14 lines

  1. #include <dos.h>
  2.  
  3. void crt_write_pixel( x, y, color ) int x, y, color;
  4. {
  5.     union REGS regs;
  6.  
  7.     regs.h.ah = 12;
  8.     regs.h.al = color;
  9.     regs.x.dx = y;
  10.     regs.x.cx = x;
  11.     
  12.     int86( 0x10, ®s, ®s );
  13. }
  14.